blob: b8a81655d4897b1fc60eca83af9caae42373db85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<script>
export const load = function load(ctx) {
const id = ctx.page.params.id;
return { props: { id } };
};
import Post from '$components/post/post.svelte';
</script>
<Post/>
|